home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / conf / access.conf-dist < prev    next >
Text File  |  1997-08-19  |  2KB  |  71 lines

  1. # access.conf: Global access configuration
  2. # Online docs at http://www.apache.org/
  3.  
  4. # This file defines server settings which affect which types of services
  5. # are allowed, and in what circumstances. 
  6.  
  7. # Each directory to which Apache has access, can be configured with respect
  8. # to which services and features are allowed and/or disabled in that
  9. # directory (and its subdirectories). 
  10.  
  11. # Originally by Rob McCool
  12.  
  13. # This should be changed to whatever you set DocumentRoot to.
  14.  
  15. <Directory @@ServerRoot@@/htdocs>
  16.  
  17. # This may also be "None", "All", or any combination of "Indexes",
  18. # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
  19.  
  20. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  21. # doesn't give it to you (or at least, not yet).
  22.  
  23. Options Indexes FollowSymLinks
  24.  
  25. # This controls which options the .htaccess files in directories can
  26. # override. Can also be "All", or any combination of "Options", "FileInfo", 
  27. # "AuthConfig", and "Limit"
  28.  
  29. AllowOverride None
  30.  
  31. # Controls who can get stuff from this server.
  32.  
  33. order allow,deny
  34. allow from all
  35.  
  36. </Directory>
  37.  
  38. # @@ServerRoot@@/cgi-bin should be changed to whatever your ScriptAliased
  39. # CGI directory exists, if you have that configured.
  40.  
  41. <Directory @@ServerRoot@@/cgi-bin>
  42. AllowOverride None
  43. Options None
  44. </Directory>
  45.  
  46. # Allow server status reports, with the URL of http://servername/server-status
  47. # Change the ".your_domain.com" to match your domain to enable.
  48.  
  49. #<Location /server-status>
  50. #SetHandler server-status
  51.  
  52. #order deny,allow
  53. #deny from all
  54. #allow from .your_domain.com
  55. #</Location>
  56.  
  57. # There have been reports of people trying to abuse an old bug from pre-1.1
  58. # days.  This bug involved a CGI script distributed as a part of Apache.
  59. # By uncommenting these lines you can redirect these attacks to a logging 
  60. # script on phf.apache.org.  Or, you can record them yourself, using the script
  61. # support/phf_abuse_log.cgi.
  62.  
  63. #<Location /cgi-bin/phf*>
  64. #deny from all
  65. #ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
  66. #</Location>
  67.  
  68. # You may place any other directories or locations you wish to have
  69. # access information for after this one.
  70.  
  71.